home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form Form1
- AutoRedraw = -1 'True
- BackColor = &H00000000&
- BorderStyle = 1 '
- Caption = "
- Height = 6105
- Icon = MAIN.FRX:0000
- KeyPreview = -1 'True
- Left = 1080
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 358
- ScaleMode = 3 '
- ScaleWidth = 337
- Top = 1110
- Width = 5175
- Begin PictureBox Picture1
- AutoRedraw = -1 'True
- AutoSize = -1 'True
- BackColor = &H00404040&
- BorderStyle = 0 '
- Height = 4830
- Left = 105
- ScaleHeight = 322
- ScaleMode = 3 '
- ScaleWidth = 322
- TabIndex = 1
- Top = 390
- Width = 4830
- Begin Timer Timer1
- Enabled = 0 'False
- Interval = 100
- Left = 277
- Top = 33
- End
- Begin Image Image1
- Enabled = 0 'False
- Height = 480
- Left = 600
- Picture = MAIN.FRX:0302
- Top = 4110
- Width = 480
- End
- End
- Begin Label Score
- Alignment = 2 '
- AutoSize = -1 'True
- BackStyle = 0 '
- Caption = "
- ForeColor = &H00FFFFFF&
- Height = 270
- Left = 1815
- TabIndex = 0
- Top = 30
- Width = 1410
- End
- Begin Menu File
- Caption = "
- (&F)"
- Begin Menu Start
- Caption = "
- g(&S)"
- End
- Begin Menu Quit
- Caption = "
- (&Q)"
- End
- End
- Sub Form_MouseDown (Button As Integer, Shift As Integer, X As Single, Y As Single)
- Power = 1000
- MouseX = X - Picture1.Left: MouseY = Y - Picture1.Top
- End Sub
- Sub InitGame () '
- GamePath = CurDir$
- If Right$(GamePath, 1) <> "\" Then GamePath = GamePath + "\"
- MyName = GamePath + "SC" + Right$("000" + Mid$(Str$(Scene), 2), 3)
- Open MyName + ".txt" For Input As #1
- Input #1, Temp$: StartTime = Val(Temp$)
- Input #1, Temp$: Image1.Left = Val(Temp$)
- Input #1, Temp$: Image1.Top = Val(Temp$)
- Close #1
- Picture1.Picture = LoadPicture(MyName + ".bmp")
- vX = 0: vY = 0
- Timer1.Enabled = True
- End Sub
- Sub Picture1_MouseDown (Button As Integer, Shift As Integer, X As Single, Y As Single)
- Power = 1000'
- MouseX = X: MouseY = Y'
- End Sub
- Sub Quit_Click ()
- End
- End Sub
- Sub Start_Click ()
- Scene = 1: InitGame
- End Sub
- Sub Timer1_Timer ()
- X1 = Image1.Left + 16: Y1 = Image1.Top + 16'
- X2 = MouseX: Y2 = MouseY'
- Length2 = (X1 - X2) ^ 2 + (Y1 - Y2) ^ 2
- If Length2 < 400 Then Length2 = 400
- '
- Accer = Power / Length2'
- HoukouX = Sgn(X1 - X2): HoukouY = Sgn(Y1 - Y2)
- 'X
- Kakudo = Atn(Abs(Y1 - Y2) / Abs(X1 - X2 - .0001))
- '
- PowX = Accer * Cos(Kakudo): PowY = Accer * Sin(Kakudo)
- vX = vX + PowX * HoukouX: vY = vY + PowY * HoukouY
- '
- Image1.Move X1 + vX - 16, Y1 + vY - 16'
- CheckPoint& = Picture1.Point(X1 + vX, Y1 + vY)
- '
- If CheckPoint& > 1 Then MsgBox "
- I": Timer1.Enabled = False
- '
- If Image1.Top < -16 Then '
- Timer1.Enabled = False: MsgBox Str$(Scene) + "
- Scene = Scene + 1: If Scece = 5 Then MsgBox "
- I": Exit Sub
- Call InitGame: Exit Sub
- End If
- StartTime = StartTime - 1: Score.Caption = "
- :" + Str$(StartTime)
- If StartTime < 1 Then MsgBox "
- I": Timer1.Enabled = False
- Power = 0
- End Sub
-